* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html,
body {
    height: 100%;
    background: black;
}

body {
    color: #fff;
    font-family: 'Oswald', sans-serif;
    overflow: hidden;
    -ms-overflow-style: none;
    scrollbar-width: none;
}

body::-webkit-scrollbar {
    display: none;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    display: block;
    max-width: 100%;
}

.sidebar {
    position: fixed;
    top: 0;
    left: 0;
    width: 75px;
    height: 100vh;
    background: black;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-right: 2px solid #22e37d;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 24px;
    transition: width 0.7s cubic-bezier(0.2, 0.9, 0.4, 1.1);
    z-index: 1000;
    overflow: hidden;
    box-shadow: 0 0 8px rgba(204, 255, 0, 0.2);
}

.sidebar:hover {
    width: 250px;
    box-shadow: 0 0 20px #22e37d;
}

.menu {
    display: flex;
    flex-direction: column;
    width: 100%;
}

.menu a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 20px 10px;
    color: white;
    text-decoration: none;
    transition: 0.5s;
}

.menu a img {
    width: 55px;
    height: 55px;
    filter: brightness(0) invert(1);
    transition: transform 0.3s ease, filter 0.3s ease;
}

.menu a:hover {
    background: white;
    color: black;
}

.menu a:hover img {
    filter: brightness(0);
    transform: scale(1.2);
}

.menu span {
    height: 25px;
    opacity: 0;
    white-space: nowrap;
    transition: opacity 0.5s ease;
}

.sidebar:hover .menu span {
    opacity: 1;
}

.menu span h1 {
    font-size: 18px;
    font-family: 'Orbitron', sans-serif;
    margin: 0;
}

.menu1 {
    display: flex;
    flex-direction: column;
    width: 100%;
}

.menu1 a {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 12px 22px;
    color: #22e37d;
    transition: 0.5s;
}

.menu1 a img {
    width: 30px;
    height: 30px;
    filter: brightness(0) invert(1);
    transition: transform 0.5s ease, filter 0.5s ease;
}

.menu1 a:hover {
    background: #22e37d;
    color: black;
}

.menu1 a.no-hover:hover {
    background: transparent !important;
    color: white;
    cursor: default;
}

.menu1 a.no-hover:hover img {
    filter: brightness(0) invert(1) !important;
    transform: none !important;
}

.menu1 a.no-hover {
    padding: 2px 22px !important;
    min-height: 6px;
}

.menu1 a:hover span p {
    color: black;
}

.menu1 a:hover img {
    filter: brightness(0);
    transform: scale(1.2);
}

.menu1 span {
    opacity: 0;
    white-space: nowrap;
    transition: opacity 0.5s ease;
}

.sidebar:hover .menu1 span {
    opacity: 1;
}

.munutext {
    color: white;
    font-size: 15px;
    position: relative;
    display: inline-block;
    cursor: pointer;
    margin: 0;
}

.munutext:hover {
    color: black;
}

.munutext::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -3px;
    width: 0%;
    height: 2px;
    background: black;
    transition: width 0.5s ease;
}

.menu1 a:hover .munutext::after {
    width: 100%;
}

.back-btn {
    display: none;
}

.main {
    margin-left: 75px;
    height: 100vh;
    display: flex;
    flex-direction: column;
    background: black;
    overflow: hidden;
}

.top {
    background: #22e37d;
    color: black;
    height: 4%;
    min-height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    position: sticky;
    top: 0;
    z-index: 10;
}

.top h1 {
    font-size: 30px;
    font-family: 'Orbitron', sans-serif;
}

.down {
    background: #22e37d;
    color: black;
    height: 4%;
    min-height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    position: sticky;
    bottom: 0;
    z-index: 10;
}

.down h1 {
    font-size: 24px;
    font-family: 'Oswald', sans-serif;
}

.content {
    flex: 1 1 auto;
    overflow-y: auto;
    overflow-x: hidden;
    display: flex;
    flex-direction: column;
    position: relative;
    background-image: url('Roster Bg Photo.png');
    background-size: cover;
    background-attachment: fixed;
    background-position: center;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.content::-webkit-scrollbar {
    display: none;
}

.content::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.65);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    z-index: 0;
    pointer-events: none;
}

.hero-section,
.grid-1 {
    position: relative;
    z-index: 1;
}

.hero-section {
    width: 60%;
    margin: 0 auto;
    padding: 40px 18px 20px;
}

.badge {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 18px;
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: .32em;
    text-transform: uppercase;
    color: #aaa;
}

.dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #22e37d;
    flex-shrink: 0;
}

.hero-section h2 {
    font-family: 'Oswald', sans-serif;
    font-size: 64px;
    font-weight: 700;
    line-height: .95;
    letter-spacing: -1px;
    text-transform: uppercase;
    color: #fff;
    text-shadow: 0 4px 30px rgba(0, 0, 0, 0.7);
}

.hero-section .highlight {
    color: #22e37d;
}

.hero-section p {
    margin-top: 20px;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.7;
    color: #ccc;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.8);
}

.grid-1 {
    flex: 0 0 auto;
    width: 60%;
    margin: 0 auto 0;
    padding: 10px;
    background: rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.6);
}

.artist-grid-inner {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 8px;
    align-items: start;
}

.artist-card {
    position: relative;
    display: block;
    aspect-ratio: 1/1;
    overflow: hidden;
    background: #101010;
    cursor: pointer;
    transition: transform .35s ease, box-shadow .35s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

.artist-card:hover {
    box-shadow: 0 20px 45px rgba(0, 0, 0, .7);
}

.artist-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.55) saturate(0.3);
    transition: filter .5s ease, transform .5s ease;
}

.artist-card:hover img {
    transform: scale(1.08);
    filter: brightness(1) saturate(1);
}

.artist-card::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    top: 0;
    background: linear-gradient(to top,
            rgba(0, 0, 0, .95) 0%,
            rgba(0, 0, 0, .55) 35%,
            rgba(0, 0, 0, .10) 70%,
            transparent 100%);
    z-index: 1;
}

.artist-info {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 14px;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.artist-name {
    font-family: 'Oswald', sans-serif;
    font-size: 22px;
    font-weight: 600;
    letter-spacing: .08em;
    line-height: 1;
    text-transform: uppercase;
    color: #ffffff;
    text-shadow: 0 2px 10px rgba(0, 0, 0, .9);
    transition: letter-spacing .35s ease;
}

.artist-card:hover .artist-name {
    letter-spacing: .14em;
}

.mobile-menu-btn {
    display: none;
    position: fixed;
    top: 8px;
    left: 8px;
    z-index: 10000;
    padding: 6px 12px;
    border-radius: 8px;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(6px);
    color: #fff;
    font-family: 'Oswald', sans-serif;
    font-size: 14px;
    letter-spacing: .05em;
    cursor: pointer;
    user-select: none;
    border: 1px solid rgba(255, 255, 255, 0.06);
}

@media(max-width:1300px) {
    .artist-grid-inner {
        grid-template-columns: repeat(5, 1fr);
    }
    
    .grid-1 {
        width: 90%;
    }
    .hero-section {
        margin-left: 50px;
        margin-top: 0px;
    }
}

@media(max-width:992px) {
    .artist-grid-inner {
        grid-template-columns: repeat(4, 1fr);
    }
    .grid-1 {
        width: 90%;
    }
    .hero-section {
        width: 70%;
        margin-left: 25px;
        margin-top: 0px;
    }
}

@media(max-width:768px) {
    .artist-grid-inner {
        grid-template-columns: repeat(3, 1fr);
    }

    .hero-section h2 {
        font-size: 42px;
    }

    .hero-section p {
        font-size: 14px;
        width: 100%;
        max-width: 100%;
    }

    .mobile-menu-btn {
        display: block;
    }

    .sidebar {
        width: 100%;
        transform: translateX(-100%);
        overflow-y: auto;
        transition: transform .35s ease;
    }

    .sidebar.active {
        transform: translateX(0);
    }

    .sidebar:hover {
        width: 100%;
        box-shadow: none;
    }

    .sidebar.active .menu span,
    .sidebar.active .menu1 span {
        opacity: 1;
    }

    .menu,
    .menu1 {
        width: 100%;
    }

    .menu a,
    .menu1 a {
        justify-content: center;
        width: 85%;
        margin: 4px auto;
        border-radius: 12px;
    }

    .menu img {
        filter: brightness(0);
    }

    .menu a {
        background: #fff;
        color: #000;
    }

    .menu1 a:hover {
        background: white;
    }

    .main {
        margin-left: 0;
    }

    .back-btn {
        display: block;
        margin: 25px auto;
        padding: 10px 18px;
        background: #fff;
        color: #000;
        border-radius: 10px;
        font-family: 'Oswald', sans-serif;
        font-size: 15px;
        font-weight: 600;
        cursor: pointer;
    }

    .grid-1 {
        width: 90%;
    }

    .hero-section {
        width: 90%;
        margin-left: 25px;
        margin-top: 0px;
    }
}

@media(max-width:480px) {
    .artist-grid-inner {
        grid-template-columns: repeat(3, 1fr);
        gap: 8px;
    }

    .artist-name {
        font-size: 16px;
    }

    .hero-section {
        width: 90%;
    }
}

.sidebar::-webkit-scrollbar,
.content::-webkit-scrollbar {
    display: none;
}

.sidebar,
.content {
    scrollbar-width: none;
    -ms-overflow-style: none;
}

::selection {
    background: #22e37d;
    color: #000;
}

::-moz-selection {
    background: #22e37d;
    color: #000;
}

a:focus {
    outline: none;
}